/* Background */
.exhibitions {
  background-color: var(--blue);
  background-image: url(../../images/backgrounds/silver-round.jpg);

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Title */
.title {
  color: aliceblue;
  margin-bottom:-1.7em;

  /* background: linear-gradient( to bottom, rgb(220, 223, 228) 50%, #061237);
	background-clip: text;
  -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

/* Main Photo */
.main-photo {
  background-color: gray;
  background-image: url("../../images/exhibitions/Συνέδριο ΕΕΜΑΑ/16_hiv-awareness-ribbon-popart - Copy.jpg");
}

.extras {
  margin-top: 4em;
  margin-bottom: 1em;
}

.vtour:hover, .catalogue:hover {
  opacity: 0.4;
}

.vtour, .catalogue {
  /* border: 1px solid grey; */
  background-color: rgb(202, 88, 11);
  color: white;
  border-radius: 0;
  width: 105px;
  height: 100px;
}
/*KEIMENO KOYTIOY*/
.vtour a, .catalogue a {
  color: white;
  text-align: center;
  font-size: 0.8rem;
  text-decoration: none;
  display: block;
  margin: auto;
  margin-top: 37%;
}

/* Description */
.color-text-box {
  position: relative;
  background: rgb(255, 192, 0);
  background: linear-gradient(-120deg, rgba(255, 192, 0, 1) 40%, rgba(205, 153, 0, 0.879) 100%);
  margin-top: 5em;
  width: 140%;
}

.color-text-box p {
  color: rgb(74, 50, 50);
}

.location {
  margin-top: 3.2em;
}

/* Xtra divider sto keimeno */
.text-divider {
  display: block;
  width: 100%;
  border-top: 1px solid grey;
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  opacity: 0.6;
}

.production a {
  color: grey;
  opacity: 0.5;
  font-size: 0.8rem;
  margin-bottom: 12em;
  text-decoration: none;
}

.press h2 {
  text-align: left;
}

.press h2 {
  margin-right: 0em;
  text-align: center;
  justify-content: center;
  font-size: large;
  font-family: -windows, windowsSystemFont, Segoe UI, 'Roboto', Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color:rgb(49, 51, 223);
}

.press {
  font-size: 0.9rem;
}

/* Photos Grid layout */
.custom-grid {
  display: grid;

  justify-content: end;
  align-items: stretch;
  column-gap: 15px;
  row-gap: 15px;

  /* grid-template-columns: (35% - 15px) 30% (35% - 15px);
  grid-template-rows: auto;
  grid-template-areas: 
    "p11 p5 p10 p12 p3 p15"
    "p4 p6 p14 p16 p9 p7"
    "p8 p17 p2 p13 p19 p20"
    "p18 p23 p21 p22 p24 p1"; */

  grid-template-columns: (20% - 15px) 20% (20% - 15px) 20% (20% - 15px);
  grid-template-rows: repeat(4, 270px);
  grid-template-areas:
    "p11 p5 p10 p12 p3 p15"
    "p4 p6 p14 p16 p9 p7"
    "p8 p17 p2 p13 p19 p20"
    "p18 p23 p21 p22 p24 p1";
}

/* Media Queries */
@media only screen and (max-width: 992px) {

  .left .custom-grid,
  .right .custom-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: 100%;
    grid-template-rows: repeat(24, 300px);
    column-gap: 15px;
    row-gap: 15px;
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6"
      "p7"
      "p8"
      "p9"
      "p10"
      "p11"
      "p12"
      "p13"
      "p14"
      "p15"
      "p16"
      "p17"
      "p18"
      "p19"
      "p20"
      "p21"
      "p22"
      "p23"
      "p24";
  }
  
  .extras {
    justify-content: center;
  }
}